how to load and show *.fpx files on asp.net page


protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
WebReport1.Prepare();
}
}


protected void WebReport1_StartReport(object sender, EventArgs e)
{
Report FReport = (sender as WebReport).Report;
string strFileName = "456.fpx"; //file exits
FReport.LoadPrepared(strFileName);
WebReport1.Report = FReport;
}

"WebReport1_StartReport" doesn't work, and show blank page.
Where and how to correct?

Comments

  • edited 4:11AM
    Hello,

    This should work:
    protected void WebReport1_StartReport(object sender, EventArgs e)
    {
    string strFileName = "456.fpx"; //file exits
    WebReport1.Report.LoadPrepared(strFileName);
    WebReport1.ReportDone = true;
    }
  • edited 4:11AM
    Thank alextz >

Leave a Comment

Rich Text Editor. To edit a paragraph's style, hit tab to get to the paragraph menu. From there you will be able to pick one style. Nothing defaults to paragraph. An inline formatting menu will show up when you select text. Hit tab to get into that menu. Some elements, such as rich link embeds, images, loading indicators, and error messages may get inserted into the editor. You may navigate to these using the arrow keys inside of the editor and delete them with the delete or backspace key.